home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000102_news@newsmaster….columbia.edu _Thu Jan 7 11:42:30 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA23579
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 7 Jan 1999 11:42:30 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id LAA17456
  7.     for kermit.misc@watsun; Thu, 7 Jan 1999 11:42:29 -0500 (EST)
  8. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.unix.aix,comp.protocols.kermit.misc
  11. Subject: Re: zmodem file transfers
  12. Date: 7 Jan 1999 16:42:28 GMT
  13. Organization: Columbia University
  14. Lines: 52
  15. Message-ID: <772o5k$nql$1@apakabar.cc.columbia.edu>
  16. References: <VA.0000025e.0ecd154c@ep708-w073> <1P4l2.1202$cR3.1191@news.rdc1.sdca.home.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: newsmaster.cc.columbia.edu comp.unix.aix:154610 comp.protocols.kermit.misc:9732
  19.  
  20. In article <1P4l2.1202$cR3.1191@news.rdc1.sdca.home.com>,
  21. Dave Hinkle <david.hinkle@mitchell.com> wrote:
  22. : Werner Kliewer wrote in message ...
  23. : >I am looking for a quality package that will allow me to automate the
  24. : >transfer of files over a dial-up connection via zmodem with a fair bit
  25. : >of intelligence. I don't need much in the way of a terminal emulator,
  26. : >but I do need a fairly robust script capability. If the scripting is
  27. : >standard shell scripting or something like that, even better.
  28. : >
  29. : >We have little choice in the protocols. It has to be a dial-up
  30. : >connection and the files have to be transferred via zmodem. We also
  31. : >have no control over what happens at the far end, other than having a
  32. : >certain amount of restricted shell access, so all the control and logic
  33. : >has to be done at our end.
  34. : ...
  35. : >Commercial packages actually preferred, if not too outrageously priced,
  36. : >and well supported. Shareware and free or GNU-ware also considered.
  37. : >
  38. : Kermit has the scripting you are looking for.
  39. Kermit can be found at:
  40.  
  41.   http://www.columbia.edu/kermit/
  42.  
  43. Of course Kermit runs the Kermit protocol, not Zmodem.  However, it can
  44. run Zmodem as an external protocol.  This works if you have a version of
  45. rz/sz that works on standard i/o and therefore can be redirected.  Versions
  46. of rz/sz issued since about 1988 do not allow this.  Maybe some readers of
  47. this newsgroup can refer to a source for redirectable rz/sz for AIX.
  48.  
  49. : >There will be arithmetic and possibly date
  50. : >processing involved, along with normal file-name filtering, and
  51. : >probably traversing of some part of a directory structure.
  52. :
  53. The current version of C-Kermit is 6.0.  It includes arithmetic.  
  54. Filename filtering can be done in various ways.  It does not have the
  55. ability to traverse directory trees.
  56.  
  57. C-Kermit 6.1 is in Beta test, and it has improved filename filtering
  58. capabilities and it can traverse directory trees:
  59.  
  60.   http://www.columbia.edu/kermit/ck60.html
  61.  
  62. C-Kermit 7.0 will be announced for beta testing within the next week or
  63. so and has even better filename filtering (e.g. full regexes, exception
  64. lists, etc) and improved directory-tree traversal.  Watch:
  65.  
  66.   comp.protocols.kermit.misc
  67.  
  68. for announcements.
  69.  
  70. - Frank